runtime.mstats.other_sys (field)

24 uses

	runtime (current package)
		heapdump.go#L714: 		sysFree(unsafe.Pointer(&tmpbuf[0]), uintptr(len(tmpbuf)), &memstats.other_sys)
		heapdump.go#L732: 			sysFree(unsafe.Pointer(&tmpbuf[0]), uintptr(len(tmpbuf)), &memstats.other_sys)
		heapdump.go#L735: 		p := sysAlloc(n, &memstats.other_sys)
		iface.go#L67: 	m = (*itab)(persistentalloc(unsafe.Sizeof(itab{})+uintptr(len(inter.mhdr)-1)*goarch.PtrSize, 0, &memstats.other_sys))
		malloc.go#L947: 			return persistentalloc(size, align, &memstats.other_sys)
		malloc.go#L1437: 		persistent.base = (*notInHeap)(sysAlloc(persistentChunkSize, &memstats.other_sys))
		malloc.go#L1462: 	if sysStat != &memstats.other_sys {
		malloc.go#L1464: 		memstats.other_sys.add(-int64(size))
		mbitmap.go#L1032: 				debugPtrmask.data = (*byte)(persistentalloc(1<<20, 1, &memstats.other_sys))
		metrics.go#L433: 	a.otherSys = memstats.other_sys.load()
		mheap.go#L503: 		sp.array = sysAlloc(uintptr(n)*goarch.PtrSize, &memstats.other_sys)
		mheap.go#L515: 			sysFree(unsafe.Pointer(&oldAllspans[0]), uintptr(cap(oldAllspans))*unsafe.Sizeof(oldAllspans[0]), &memstats.other_sys)
		mheap.go#L703: 	h.specialfinalizeralloc.init(unsafe.Sizeof(specialfinalizer{}), nil, nil, &memstats.other_sys)
		mheap.go#L704: 	h.specialprofilealloc.init(unsafe.Sizeof(specialprofile{}), nil, nil, &memstats.other_sys)
		mheap.go#L705: 	h.specialReachableAlloc.init(unsafe.Sizeof(specialReachable{}), nil, nil, &memstats.other_sys)
		mheap.go#L706: 	h.arenaHintAlloc.init(unsafe.Sizeof(arenaHint{}), nil, nil, &memstats.other_sys)
		mstats.go#L62: 	other_sys sysMemStat // updated atomically or during STW
		mstats.go#L455: 	stats.OtherSys = memstats.other_sys.load()
		mstats.go#L546: 		memstats.other_sys.load()
		netpoll.go#L623: 		mem := persistentalloc(n*pdSize, 0, &memstats.other_sys)
		trace.go#L366: 		sysFree(unsafe.Pointer(buf), unsafe.Sizeof(*buf.ptr()), &memstats.other_sys)
		trace.go#L655: 		buf = traceBufPtr(sysAlloc(unsafe.Sizeof(traceBuf{}), &memstats.other_sys))
		trace.go#L962: 		block := (*traceAllocBlock)(sysAlloc(unsafe.Sizeof(traceAllocBlock{}), &memstats.other_sys))
		trace.go#L980: 		sysFree(unsafe.Pointer(block), unsafe.Sizeof(traceAllocBlock{}), &memstats.other_sys)